/*flex*/

.flex-c-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-c-b {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.flex-c-a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.flex-c-s {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flex-c-e {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.flex-r-c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-r-b {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-r-a {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.flex-r-s {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.flex-r-e {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

a:link {
    color: none;
    text-decoration: none;
}